<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"  encoding="ISO-8859-1" indent="yes"/>

    <xsl:template match="PLANETES">
        <DONNEES> 
            <xsl:apply-templates/>
        </DONNEES>
   </xsl:template>

    <xsl:template match="PLANETE">
        <DENSITE> 
            <VALEUR>
                <xsl:value-of select="DENSITE"/>
            </VALEUR>
            <xsl:apply-templates/>
        </DENSITE>
   </xsl:template>
    
    <xsl:template match="NOM">
        <NOM>
            <xsl:value-of select="."/>
        </NOM>
    </xsl:template>

    <xsl:template match="MASSE">
        <MASSE>
        <xsl:value-of select="."/>
        </MASSE>
    </xsl:template>

    <xsl:template match="RAYON">
        <RAYON>
        <xsl:value-of select="."/>
        </RAYON>
    </xsl:template>

    <xsl:template match="JOUR">
        <JOUR>
        <xsl:value-of select="."/>
        </JOUR>
    </xsl:template>

    <xsl:template match="DENSITE">
    </xsl:template>

    <xsl:template match="DISTANCE">
    </xsl:template>

</xsl:stylesheet>
